home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Magazin: Amiga-CD 1996 September & October
/
Amiga-CD 1996 #9-10.iso
/
ausgabe_9_96
/
kommunikation
/
mm_030
/
rexx
/
mm_runrexx.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-04-29
|
223b
|
18 lines
/*
** This script Opens a File Requester allowing you to choose
** an ARexx script to run
*/
address 'MAILMANAGER'
script = 'MM:Rexx/'
MM_FileReq 'script'
if RC = 0 THEN DO
address command
rx script
END
EXIT